/* Rootleys — generated CSS.
   Uploaded to site_settings.sx_css_location (the dedicated generated-CSS slot,
   separate from the merchant's own css_location). It is linked globally on every
   page, so every selector here is namespaced under .sx / .sx-* and nothing
   touches the theme's header, footer, product cards or any bare element.

   Authored per-segment: the publisher concatenates the blocks it needs and can
   add/replace/remove one section surgically by its BEGIN/END markers.
   Do not minify — the markers are comments and must survive. */

/* BEGIN shoopy-gen:base */
.sx {
  /* Brand comes from the theme so these sections re-skin with the store. */
  --sx-navy: var(--secondary-main, #001834);
  --sx-lime: #9db515;
  --sx-cream: #f8f2e7;
  --sx-cream-2: #f1e7d5;
  --sx-line: #e3d8c4;
  --sx-muted: #5c6b7e;
  --sx-deal: #a85f12;
  --sx-gap: 20px;
  --sx-radius: 16px;
  --sx-max: 1240px;
}
.sx,
.sx *,
.sx *::before,
.sx *::after { box-sizing: border-box; }

.sx-wrap {
  width: 100%;
  max-width: var(--sx-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section heading — shared by every Tier-B block */
.sx-head { text-align: center; margin: 0 0 28px; }
.sx-head__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sx-lime);
}
.sx-head__title {
  margin: 0;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--sx-navy);
}
.sx-head__sub {
  margin: 12px auto 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sx-muted);
}
.sx-head--on-navy .sx-head__title { color: #fff; }
.sx-head--on-navy .sx-head__sub { color: rgba(255, 255, 255, .72); }

/* One CTA treatment across every generated section: lime pill, navy label.
   Reads the same on cream and on navy, and is never confused with the amber
   discount chip or the red alert colour. */
.sx-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--sx-lime);
  color: var(--sx-navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sx-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(157, 181, 21, .35);
}
.sx-btn--ghost {
  background: transparent;
  color: var(--sx-navy);
  border: 1.5px solid var(--sx-line);
}
.sx-btn--ghost:hover { box-shadow: none; border-color: var(--sx-navy); }
/* END shoopy-gen:base */


/* BEGIN shoopy-gen:usp-1 */
.sx-usp { background: var(--sx-navy); padding: 26px 0; }
.sx-usp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 10px;
  width: 100%;
  max-width: var(--sx-max);
  margin: 0 auto;
  padding: 0 20px;
}
.sx-usp__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.sx-usp__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(157, 181, 21, .55);
  display: grid;
  place-items: center;
  color: var(--sx-lime);
}
.sx-usp__icon .sx-i { width: 22px; height: 22px; }
.sx-usp__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 768px) {
  .sx-usp__grid { grid-template-columns: repeat(5, 1fr); }
  .sx-usp__item { flex-direction: row; text-align: left; gap: 12px; }
}
/* END shoopy-gen:usp-1 */


/* BEGIN shoopy-gen:recipes-1 */
.sx-recipes { background: var(--sx-cream); padding: 56px 0; }
.sx-recipes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sx-gap);
}
.sx-recipes__card {
  display: block;
  text-decoration: none;
  border-radius: var(--sx-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sx-line);
  transition: transform .18s ease, box-shadow .18s ease;
}
.sx-recipes__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 24, 52, .12);
}
.sx-recipes__media { position: relative; aspect-ratio: 1 / 1; }
.sx-recipes__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sx-recipes__body { padding: 14px 16px 18px; }
.sx-recipes__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--sx-navy);
}
.sx-recipes__sub {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--sx-muted);
}
.sx-recipes__foot { margin-top: 30px; text-align: center; }
@media (min-width: 900px) {
  .sx-recipes__grid { grid-template-columns: repeat(4, 1fr); }
}
/* END shoopy-gen:recipes-1 */


/* BEGIN shoopy-gen:about-1 */
.sx-about { background: var(--sx-navy); padding: 60px 0; }
.sx-about__inner {
  display: grid;
  gap: 32px;
  align-items: center;
}
.sx-about__media {
  border-radius: var(--sx-radius);
  overflow: hidden;
  order: -1;
}
.sx-about__img { width: 100%; height: 100%; display: block; object-fit: cover; }
.sx-about__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sx-lime);
}
.sx-about__title {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}
.sx-about__copy {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .74);
}
.sx-about__list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.sx-about__li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.sx-about__tick {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sx-lime);
  color: var(--sx-navy);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
@media (min-width: 900px) {
  .sx-about__inner { grid-template-columns: 1fr 1fr; gap: 56px; }
  .sx-about__media { order: 0; }
  .sx-about__list { grid-template-columns: repeat(2, 1fr); }
}
/* END shoopy-gen:about-1 */


/* BEGIN shoopy-gen:reviews-1 */
.sx-reviews { background: var(--sx-cream-2); padding: 56px 0; }
.sx-reviews__grid { display: grid; gap: var(--sx-gap); }
.sx-reviews__card {
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: var(--sx-radius);
  padding: 26px 24px;
}
.sx-reviews__stars {
  color: var(--sx-lime);
  letter-spacing: .18em;
  font-size: 14px;
  margin: 0 0 12px;
}
.sx-reviews__quote {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sx-navy);
}
.sx-reviews__who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.sx-reviews__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sx-navy);
  color: var(--sx-lime);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 auto;
}
.sx-reviews__name { font-size: 13px; font-weight: 700; color: var(--sx-navy); }
.sx-reviews__meta { font-size: 12px; color: var(--sx-muted); }
@media (min-width: 860px) {
  .sx-reviews__grid { grid-template-columns: repeat(3, 1fr); }
}
/* END shoopy-gen:reviews-1 */


/* BEGIN shoopy-gen:toast-1 */
/* "Last customer purchased…" social-proof toast (requested in the MOM).
   Fixed, dismissible, and it never covers a CTA on mobile (bottom-left, above
   the safe area). Script is namespaced + guarded against double-init. */
.sx-toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(100% - 32px);
  max-width: 340px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 24, 52, .18);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.sx-toast.is-on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sx-toast__img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
  background: var(--sx-cream);
}
.sx-toast__body { min-width: 0; }
.sx-toast__who {
  margin: 0;
  font-size: 12px;
  color: var(--sx-muted);
}
.sx-toast__what {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--sx-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-toast__ago {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--sx-lime);
  font-weight: 700;
}
.sx-toast__x {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: 0;
  font-size: 15px;
  line-height: 1;
  color: var(--sx-muted);
  cursor: pointer;
  padding: 2px;
}
/* END shoopy-gen:toast-1 */


/* Extracted from index.html */

/* ───────────────────────────────────────────────────────────────────────────
   THEME LAYER — base theme `classic`, re-skinned to Rootleys.
   This is the store's own chrome + native section styling (header, notice,
   hero, category, product card, banner, footer). The custom Tier-B sections
   are styled in theme.css, which is the only file that gets uploaded.
   ─────────────────────────────────────────────────────────────────────────── */
:root {
  --secondary-main: #001834;   /* Shoopy brand token — logo-extracted navy */
  --navy: #001834;
  --navy-2: #0c2a4f;
  --lime: #9db515;
  --lime-d: #8aa011;
  --cream: #f8f2e7;
  --cream-2: #f1e7d5;
  --line: #e3d8c4;
  --text: #001834;
  --muted: #5c6b7e;
  --deal: #a85f12;            /* discount — deliberately NOT the CTA colour */
  --radius: 16px;
  --max: 1240px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.15; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.serif { font-family: Fraunces, Georgia, serif; font-weight: 500; font-style: italic; }

/* Single CTA treatment: lime pill, navy label — same on cream and on navy. */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(157,181,21,.4); }
.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;
}
.btn--ghost:hover { box-shadow: none; border-color: #fff; }
.btn--ghost-dark { background: transparent; border: 1.5px solid var(--line); color: var(--navy); }
.btn--ghost-dark:hover { box-shadow: none; border-color: var(--navy); }

/* ── Notice bar (Tier C) ── */
.notice {
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-align: center;
  padding: 9px 16px;
}
.notice b { color: var(--lime); font-weight: 700; }
.notice__sep { opacity: .35; margin: 0 10px; }
@media (max-width: 640px) { .notice__extra { display: none; } }

/* ── Header (Tier C) ── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hdr__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 68px;
}
.hdr__burger {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--navy);
  margin-left: -8px;
}
.hdr__logo { flex: 0 0 auto; }
.hdr__logo img { height: 42px; width: auto; }
.hdr__nav { display: none; gap: 26px; margin-left: 18px; }
.hdr__link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.hdr__link:hover { border-bottom-color: var(--lime); }
.hdr__spacer { flex: 1 1 auto; }
.hdr__search {
  display: none;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  width: 260px;
  color: var(--muted);
}
.hdr__search input {
  border: 0;
  outline: 0;
  background: none;
  font: inherit;
  font-size: 13.5px;
  width: 100%;
  color: var(--text);
}
.hdr__icons { display: flex; align-items: center; gap: 4px; }
.hdr__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--navy);
  text-decoration: none;
}
.hdr__icon:hover { background: var(--cream-2); }
.hdr__count {
  position: absolute;
  top: 3px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.hdr__mobsearch { padding: 0 20px 12px; }
.hdr__mobsearch .hdr__search { display: flex; width: 100%; }
@media (min-width: 1024px) {
  .hdr__burger, .hdr__mobsearch { display: none; }
  .hdr__nav { display: flex; }
  .hdr__search { display: flex; }
}

/* ── Hero carousel (Tier A · StoreBanner) ── */
.hero { position: relative; background: var(--navy); }
.hero__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.hero__track::-webkit-scrollbar { display: none; }
.hero__slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  /* Tall enough that the copy always clears the packs at the foot of the
     mobile crop — the CTAs must never land on top of a pack. */
  min-height: 660px;
  display: flex;
  align-items: flex-start;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 20px 0;
}
.hero__copy { max-width: 560px; }
.hero__eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(157,181,21,.5);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(30px, 5.2vw, 54px);
  font-weight: 800;
  letter-spacing: -.015em;
  color: #fff;
  text-transform: uppercase;
}
.hero__title .accent { color: var(--lime); }
.hero__title .serif { text-transform: none; font-size: 1.02em; }
.hero__sub {
  margin: 16px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.76);
  max-width: 440px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
/* Slide 2 sits on cream — flip the copy to navy. */
.hero__slide--light .hero__title { color: var(--navy); }
.hero__slide--light .hero__sub { color: var(--muted); }
.hero__slide--light .hero__eyebrow { color: #6b7d0f; border-color: rgba(157,181,21,.7); }
.hero__slide--light .btn--ghost { border-color: var(--line); color: var(--navy); }
.hero__slide--light .btn--ghost:hover { border-color: var(--navy); }

.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero__dot {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.34);
  cursor: pointer;
}
.hero__dot.is-on { background: var(--lime); }
@media (min-width: 768px) {
  .hero__slide { min-height: 560px; align-items: center; }
  .hero__inner { padding: 0 20px; }
  .hero__sub { font-size: 15.5px; margin-top: 18px; }
}
/* Tablet: the wide art crops inward, so the packs sit further left. Keep the
   copy narrow enough that the headline never runs into a pack. */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__copy { max-width: 400px; }
  .hero__title { font-size: 36px; }
  .hero__sub { max-width: 360px; font-size: 14.5px; }
}
@media (min-width: 1100px) { .hero__slide { min-height: 600px; } }

/* ── Section shell ── */
.sec { padding: 56px 0; }
.sec--tight { padding: 44px 0; }
.sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.sec__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6b7d0f;
}
.sec__title { font-size: clamp(23px, 3.4vw, 34px); font-weight: 700; }
.sec__sub { margin: 8px 0 0; color: var(--muted); font-size: 14.5px; max-width: 560px; }
.sec__more {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 2px solid var(--lime);
  padding-bottom: 3px;
  white-space: nowrap;
}
@media (max-width: 640px) { .sec__more { display: none; } }

/* ── Category tiles (Tier A · LargeCategoriesCardV1) ── */
.cats { display: grid; gap: 18px; }
.cat {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line);
  min-height: 260px;
}
.cat__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* The packs live in the right half of the art, so the scrim fades left→right
   and the copy always sits on clean cream. */
.cat__body {
  position: relative;
  z-index: 1;
  padding: 26px 22px;
  width: 100%;
  background: linear-gradient(90deg, rgba(248,242,231,.97) 0%, rgba(248,242,231,.9) 46%, rgba(248,242,231,0) 78%);
}
.cat__count {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6b7d0f;
}
.cat__title { font-size: 24px; font-weight: 700; color: var(--navy); max-width: 210px; }
.cat__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.cat:hover .cat__link { gap: 12px; }
.cat__link .arrow { transition: transform .18s ease; }
.cat:hover .arrow { transform: translateX(3px); }
@media (min-width: 768px) {
  .cats { grid-template-columns: 1fr 1fr; }
  .cat { min-height: 330px; }
  .cat__body { padding: 34px 30px; }
  .cat__title { font-size: 27px; max-width: 240px; }
}

/* ── Product cards (Tier C setting: TWO_CARD) ── */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 62%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 560px) { .rail { grid-auto-columns: 38%; } }
@media (min-width: 768px) {
  .rail { grid-auto-columns: 26%; }
  .grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 1024px) {
  .rail { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; gap: 18px; }
  .grid { grid-template-columns: repeat(4, 1fr); }
}

/* Card follows the REAL `zippy` signature (product-card.jsx + product-card.css):
   square media with a floating ADD button that swaps to a filled `− n +` stepper;
   info BELOW the image in zippy's order — price row first, then name, then the
   variant chip. The chip (and ADD, for a product with variants) opens the variant
   sheet, which is the only place in the platform a shopper can pick 100 g vs 250 g
   without leaving the grid. */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,24,52,.11); }
.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream);
}
.card__media a { display: block; width: 100%; height: 100%; }
/* contain, never cover: a packshot must never lose its label to a crop. */
.card__media img { width: 100%; height: 100%; object-fit: contain; }
.card__deal {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--deal);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 4px 8px;
  border-radius: 6px;
}
/* zippy's signature ADD: white pill, brand border, hard 1.5px offset shadow. */
.card__add {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  min-height: 32px;
  padding: 5px 18px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 8px;
  box-shadow: 1.5px 1.5px 0 0 var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s ease;
}
.card__add:hover { background: var(--lime); border-color: var(--navy); }
/* …and the stepper it becomes once the item is in the cart. */
.card__qtysel {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: space-between;
  min-width: 84px;
  min-height: 32px;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
}
.card__qtysel.is-on { display: flex; }
.card__qtysel button {
  min-width: 28px;
  height: 32px;
  border: 0;
  background: none;
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.card__qtysel button:hover { background: rgba(255,255,255,.2); }
.card__qtysel span { color: #fff; font-size: 13px; font-weight: 800; min-width: 16px; text-align: center; }

.card__info { padding: 12px 13px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1 1 auto; }
.card__pricing { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.price__now { font-size: 16px; font-weight: 800; color: var(--navy); }
.price__mrp { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.price__off { font-size: 11px; font-weight: 800; color: var(--deal); }
.card__name { font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.card__name a { text-decoration: none; }
.card__name a:hover { color: #6b7d0f; }
.card__qty { margin: 0; font-size: 11.5px; color: var(--muted); }

/* The variant chip — tap to choose the pack size. */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--navy); background: #fff; }

/* ── Variant sheet (zippy's VariantProductModal) ── */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.sheet.is-on { display: block; }
.sheet__scrim { position: absolute; inset: 0; background: rgba(0,24,52,.55); }
.sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 8px 18px 26px;
  max-height: 82vh;
  overflow-y: auto;
}
.sheet__grab { width: 42px; height: 4px; border-radius: 999px; background: var(--line); margin: 0 auto 14px; }
.sheet__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.sheet__title { font-size: 16px; font-weight: 700; }
.sheet__sub { margin: 0 0 16px; font-size: 12.5px; color: var(--muted); }
.sheet__x { border: 0; background: none; font-size: 18px; color: var(--muted); cursor: pointer; padding: 4px; }
.vrow {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
}
.vrow__img { width: 58px; height: 58px; flex: 0 0 auto; border-radius: 10px; object-fit: contain; background: var(--cream); }
.vrow__body { flex: 1 1 auto; min-width: 0; }
.vrow__size { margin: 0; font-size: 14px; font-weight: 700; color: var(--navy); }
.vrow__price { margin: 3px 0 0; display: flex; align-items: baseline; gap: 6px; }
.vrow__add {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 5px 18px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 8px;
  box-shadow: 1.5px 1.5px 0 0 var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.vrow__add:hover { background: var(--lime); }
@media (min-width: 768px) {
  .sheet__panel {
    left: 50%;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    border-radius: 18px;
    padding: 22px 22px 18px;
  }
  .sheet__grab { display: none; }
}

/* ── Promo banner (Tier A · BannerCollection) ── */
.promo { position: relative; border-radius: var(--radius); overflow: hidden; }
.promo__img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.promo__inner {
  position: relative;
  z-index: 1;
  padding: 36px 24px;
  max-width: 520px;
}
.promo__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
}
.promo__title { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: #fff; }
.promo__title .serif { font-weight: 500; color: var(--lime); }
.promo__list { list-style: none; margin: 20px 0 26px; padding: 0; display: grid; gap: 9px; }
.promo__li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.84);
}
.promo__li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex: 0 0 auto; }
.promo--light .promo__title { color: var(--navy); }
.promo--light .promo__eyebrow { color: #6b7d0f; }
.promo--light .promo__li { color: var(--muted); }
.promo--light .promo__title .serif { color: #6b7d0f; }
.promo__price { margin: 0 0 22px; font-size: 14px; color: var(--muted); }
.promo__price b { font-size: 22px; color: var(--navy); }
@media (min-width: 768px) {
  .promo__inner { padding: 56px 48px; min-height: 300px; display: flex; flex-direction: column; justify-content: center; }
}

/* ── Footer (Tier C) ── */
.ftr { background: var(--navy); color: rgba(255,255,255,.7); padding: 52px 0 0; }
.ftr__grid { display: grid; gap: 32px; }
/* The logo is a navy blob with white lettering — it would vanish on the navy
   footer, so it sits on a cream badge, the same surface it has everywhere else. */
.ftr__logo {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
  background: var(--cream);
  border-radius: 12px;
  padding: 6px 12px;
  box-sizing: content-box;
}
.ftr__about { font-size: 14px; line-height: 1.75; margin: 0 0 18px; max-width: 320px; }
.ftr__social { display: flex; gap: 10px; }
.ftr__soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}
.ftr__soc:hover { background: var(--lime); color: var(--navy); border-color: var(--lime); }
.ftr__h {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.ftr__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ftr__list a { text-decoration: none; font-size: 14px; }
.ftr__list a:hover { color: var(--lime); }
.ftr__contact { font-size: 14px; line-height: 1.8; margin: 0; }
.ftr__contact a { text-decoration: none; }
.ftr__contact a:hover { color: var(--lime); }
.ftr__bar {
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-size: 12.5px;
}
.ftr__pay { display: flex; gap: 8px; flex-wrap: wrap; }
.ftr__chip {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
}
@media (min-width: 768px) { .ftr__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; } }

.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sx-i { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
